Konsol:RGBA(red, green, blue, alpha, return)
Returns a corresponding color with transparency depending on the values supplied.
If you want Alpha to be 255 use RGB, instead.
function main() { Number color; Konsol:RGBA(255, 0, 0, 120, color) //color will have a color value of pure red with about 50% transparency }